home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Comm / AmiTCP30b2.lha / netinclude / utime.h < prev    next >
C/C++ Source or Header  |  1994-03-29  |  497b  |  21 lines

  1. #ifndef    UTIME_H
  2. #define    UTIME_H
  3. /*
  4.  * $Id: utime.h,v 3.1 1994/03/29 12:56:35 ppessi Exp $
  5.  *
  6.  * definitions and prototype for the utime() (in the net.lib)
  7.  *
  8.  * Copyright © 1994 AmiTCP/IP Group, <amitcp-group@hut.fi>
  9.  *                  Helsinki University of Technology, Finland.
  10.  *                  All rights reserved.
  11.  */
  12.  
  13. struct utimbuf {
  14.     time_t actime;        /* Access time */
  15.     time_t modtime;        /* Modification time */
  16. };
  17.  
  18. int utime(const char *, const struct utimbuf *);
  19.  
  20. #endif /* !UTIME_H */
  21.